找传奇、传世资源到传世资源站!

c# 获取usb pid,vid方法

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

通过c 获取。编译成动态库,供c#调用。c# 获取usb pid,vid方法 C#语言基础-第1张  try
            {
                // 开辟一块控件
                string strout = new string('\0', 1000);
                // 调用C 库,返回字符串。
                string str = Marshal.PtrToStringAnsi(GetUsbInfo(Encoding.ASCII.GetBytes(strout)));              
                // 打印字符串
                PrintStr(str);
                Console.Read();
            }
            catch (Exception ex) 
            {
                Console.WriteLine(ex.ToString());
            }

        }

        static void PrintStr(string origin) 
        {
            List<string> pidList = origin.Split('#').Where(s => s.Contains("pid")).ToList();
            foreach (string temp in pidList) 
            {
                Console.WriteLine(temp);     
            }
        }.
├── 获取USB串口Vid
│   ├── GetPid
│   │   ├── GetPid.cpp
│   │   ├── GetPid.sln
│   │   ├── GetPid.vcxproj
│   │   ├── GetPid.vcxproj.filters
│   │   ├── GetPid.vcxproj.user
│   │   └── Release
│   │       ├── GetPid.Build.CppClean.log
│   │       ├── GetPid.dll
│   │       ├── GetPid.dll.recipe
│   │       ├── GetPid.exp
│   │       ├── GetPid.iobj
│   │       ├── GetPid.ipdb
│   │       ├── GetPid.lib
│   │       ├── GetPid.log
│   │       ├── GetPid.obj
│   │       ├── GetPid.pdb
│   │       ├── GetPid.tlog
│   │       │   ├── CL.command.1.tlog
│   │       │   ├── CL.read.1.tlog
│   │       │   ├── CL.write.1.tlog
│   │       │   ├── GetPid.lastbuildstate
│   │       │   ├── GetPid.write.1u.tlog
│   │       │   ├── link.command.1.tlog
│   │       │   ├── link.read.1.tlog
│   │       │   └── link.write.1.tlog
│   │       ├── GetPid.vcxproj.FileListAbsolute.txt
│   │       └── vc142.pdb
│   └── c#调用
│       ├── App.config
│       ├── ConsoleApp1.csproj
│       ├── Program.cs
│       ├── Properties
│       │   └── AssemblyInfo.cs
│       ├── bin
│       │   ├── Debug
│       │   │   ├── ConsoleApp1.exe
│       │   │   ├── ConsoleApp1.exe.config
│       │   │   ├── ConsoleApp1.pdb
│       │   │   ├── GetPid.dll
│       │   │   ├── GetPid.exp
│       │   │   ├── GetPid.ilk
│       │   │   ├── GetPid.lib
│       │   │   └── GetPid.pdb
│       │   └── Release
│       └── obj
│           └── Debug
│               ├── ConsoleApp1.csproj.CoreCompileInputs.cache
│               ├── ConsoleApp1.csproj.FileListAbsolute.txt
│               ├── ConsoleApp1.csprojAssemblyReference.cache
│               ├── ConsoleApp1.exe
│               ├── ConsoleApp1.pdb
│               ├── DesignTimeResolveAssemblyReferencesInput.cache
│               └── TempPE
└── 找例子网_获取USB串口Vid (1).rar

12 directories, 44 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复